From 9b782f9768bd977050132a64b50f0ad827a18b94 Mon Sep 17 00:00:00 2001 From: Alex Schroeder Date: Thu, 2 Mar 2006 20:06:15 +0000 Subject: [PATCH] (rmail-read-label): Since rmail-keywords is a list of symbols, we need to transform it into an alist for completion. --- lisp/mail/rmailkwd.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/mail/rmailkwd.el b/lisp/mail/rmailkwd.el index 8c294a4b36d..fa59ff91d85 100644 --- a/lisp/mail/rmailkwd.el +++ b/lisp/mail/rmailkwd.el @@ -137,7 +137,8 @@ message." (concat prompt (if rmail-last-label (concat " (default " default "): ") ": ")) - rmail-keywords nil nil nil nil default))))) + (mapcar 'list rmail-keywords) + nil nil nil nil default))))) (setq rmail-last-label (rmail-make-label result t)) ;; return the string, not the symbol result))) -- 2.30.2